home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 11 / AMUG BBS in a Box Volume XI (April 1994) (MacWizards).iso / Files / QuickTime / QT Tools / QuickTime Interfacing.sit / QuickTime Interfacing / SeeMovieRun folder / sources / Globals.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-19  |  597 b   |  24 lines  |  [TEXT/KAHL]

  1. /* ---------------------------------------------------------------
  2.     PROGRAM:    See Movie Run
  3.     FILE:        Globals.c
  4.     NOTES:        This file contains declarations of some of our
  5.                 global variables.
  6.                 
  7.     DATE:        7.1.92
  8.    --------------------------------------------------------------- */
  9.  
  10. #include "CEBCollaborator.h"
  11.  
  12. //
  13. // gEBCollaborator is our global "Event Broadcasting" object that handles getting events
  14. // to each Movie Controller that depends on it.
  15. //
  16.  
  17. CEBCollaborator    *gEBCollaborator;
  18.  
  19. //
  20. // gQuickTimeVersion holds the version of QuickTime that is currently running.
  21. //
  22.  
  23. long gQuickTimeVersion;
  24.